Is `hg pull --rebase` analogous to `svn update`?
Posted
by allyourcode
on Stack Overflow
See other posts from Stack Overflow
or by allyourcode
Published on 2010-03-01T08:15:32Z
Indexed on
2010/03/21
1:01 UTC
Read the original article
Hit count: 439
This question assumes there's a "blessed" central repository that members of a team
- clone from
- push to when they have contributions that they want other team members to see
- pull from when they want to see other people's contributions.
- etc.
If so, I would assume hg update
is not analogous to svn update
(why would there be two commands that do exactly the same thing?). From what I can gather, hg update
more like svn revert
. Is that correct?
Update:
My understanding of rebase is largely based on the "A common case" section on this page:
© Stack Overflow or respective owner